-
-
Notifications
You must be signed in to change notification settings - Fork 77
Conversation
mtiley
commented
Dec 11, 2019
- code repetition reduced
- typos fixed
source/rst/geom_series.rst
Outdated
y = calculate_y(i_0, b, g, T, y_init) | ||
ax2.plot(x, y, label=f"g={g}") | ||
|
||
plots = [ax1, ax2] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here and in the next line, you could omit the square brackets and still have the same outcome.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks -- new commit should have fixed that now.
This is very nice @mtiley. Please see my minor comment. |
source/rst/geom_series.rst
Outdated
y = calculate_y(i_0, b, g, T, y_init) | ||
ax2.plot(x, y, label=f"g={g}") | ||
|
||
plots = ax1, ax2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please change plots
to axes
source/rst/geom_series.rst
Outdated
|
||
plots = ax1, ax2 | ||
param_labels = "Investment", "Government Spending" | ||
for pair in zip(plots, param_labels): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please change pair
to ax, param
and then drop the next two lines. Inside the loop, please make the appropriate name changes.
@mtiley, please add the "ready" label when this is ready for review again. |